From ed160caea01684db9b49b3aff8cdd336be15ca1a Mon Sep 17 00:00:00 2001 From: "kfraser@localhost.localdomain" Date: Wed, 14 Feb 2007 12:14:49 +0000 Subject: [PATCH] Fix DEC instruction decode. Turn into SUB, not OR. :-) Signed-off-by: Keir Fraser --- xen/arch/x86/hvm/platform.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xen/arch/x86/hvm/platform.c b/xen/arch/x86/hvm/platform.c index 76202a36c0..32246da991 100644 --- a/xen/arch/x86/hvm/platform.c +++ b/xen/arch/x86/hvm/platform.c @@ -713,7 +713,7 @@ static int mmio_decode(int address_bytes, unsigned char *opcode, return DECODE_success; case 1: /* dec */ - mmio_op->instr = INSTR_OR; + mmio_op->instr = INSTR_SUB; return DECODE_success; default: -- 2.30.2